home *** CD-ROM | disk | FTP | other *** search
- *- HTMLWiz.H
- *- header file for the sample HTML output wizard
- *-
- *- #defines which need to be localized end with "_LOC"
- *-
-
- *- some standard #defines
- #DEFINE C_CR CHR(13) && return
- #DEFINE C_LF CHR(10) && linefeed
- #DEFINE C_TAB CHR(9) && tab
-
- *- step descriptions that appear in the wizard popup
- *- define one for each page/step in the Wizard
- #define STEP1_LOC "Step 1 - Select Fields"
- #define STEP2_LOC "Step 2 - Sort Records"
- #define STEP3_LOC "Step 3 - Finish"
-
- *- text descriptions that appear on each page of the wizard
- *- define one for each page/step in the Wizard
- #define DESC1_LOC 'Which fields do you want to use on your form?' + C_CR + C_CR + ;
- 'Select a database or the Free Tables, select a table or view, and then select the fields you want.'
-
- #DEFINE DESC2_LOC "How do you want to sort your records?" + C_CR + C_CR + ;
- "Select up to three fields or select one index tag to sort the records by."
-
- #DEFINE DESC3_LOC "" && empty--finish screen
-
-
- *- Data types
- #DEFINE DT_INTEGER 'I'
- #DEFINE DT_NUM 'N'
- #DEFINE DT_FLOAT 'F'
- #DEFINE DT_LOGIC 'L'
- #IFNDEF DT_MEMO
- #DEFINE DT_MEMO 'M'
- #ENDIF
- #DEFINE DT_GEN 'G'
- #DEFINE DT_CHAR 'C'
- #DEFINE DT_DATE 'D'
- #DEFINE DT_DATETIME 'T'
- #DEFINE DT_CURRENCY 'Y'
- #DEFINE DT_DOUBLE 'B'
-
- *- Screen BMP files
- *- define one for each page/step in the Wizard
- #define BMPFILE1 "opentabl.bmp"
- #define BMPFILE2 "newsort.bmp"
- #define BMPFILE3 "" && empty -- finish screen
-
- *- Context sensitive Help IDs
- #define FORM_HELP_ID1 0
- #define FORM_HELP_ID2 0
- #define FORM_HELP_ID3 0
-
- *- other strings, put here to simplify localization
- #DEFINE GENHTML_LOC ["This HTML Page was generated by the Visual Foxpro HTML Wizard"]
- #DEFINE GENDATE_LOC "This page was generated on "
- #DEFINE C_NOBROWSER_LOC "Unable to start browser. This wizard requires that " + ;
- "Microsoft Internet Explorer 3.0 be installed on this machine."
-
- #DEFINE C_YES_LOC "Yes"
- #DEFINE C_NO_LOC "No"
-
- #DEFINE I_SHOW_MODAL 1
- #DEFINE I_SHOW_MODELESS 2